home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / DB_CLIPP / 0411.ZIP / STDIO.H < prev    next >
Text File  |  1983-08-03  |  384b  |  18 lines

  1. /*    STDIO.H        Include file for C88 input/output.    */
  2.  
  3. /*    a 'FILE' is simply an integer is this implimentation    */
  4.  
  5. typedef int  FILE;
  6.  
  7. /*    Standard input, standard output and standard error.    */
  8.  
  9. #define stdin    0
  10. #define stdout    1
  11. #define    stderr    2
  12.  
  13. #define    NULL    0
  14. #define TRUE    1
  15. #define FALSE    0
  16. #define EOF        (-1)
  17. #define ERR        (-1)
  18.